home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 75 / XENIATGM75.iso / Shareware / X-Setup 5.0 / _SETUP.1 / XQ OEM Info Picture.xpl < prev    next >
Text File  |  1999-05-28  |  1KB  |  48 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 3.1"
  2. "TYPE"="3"
  3. "COUNT"="1"
  4. "UIPATH"="Appearance\OEM Information"
  5. "NAME"="OEM Picture"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Select Picture"
  8. "DATA 1"="Pictures (*.bmp)|*.bmp"
  9. "DESCRIPTION 1"="You can select any picture you want, but for best usage it should be 160x120 pixels, 16 colors."
  10. "DESCRIPTION 2"="To see the picture, select "Start" | "Settings" | "Control Panel" and click "System"."
  11. "DESCRIPTION 3"="Notice: Any existing OEM picture will be overwritten!"
  12. "AUTHOR"="Xteq Systems"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
  15. "COMMENT 2"="Version 1.1"
  16.  
  17.  
  18.  
  19. Sub Plugin_Initialize 
  20. ' SetUIElement 1,GetWinDir
  21. End Sub
  22.  
  23.  
  24. Sub Plugin_CheckData(ElementIndex)
  25. End Sub
  26.  
  27.  
  28.  
  29. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  30.  sSource=GetUIElement(1)
  31.  sDest=GetWinSysDir & "OEMLOGO.BMP"
  32.  
  33.  If Len(sSource)>0 then
  34.   If FileExists(sDest) then
  35.    Call FileDelete(sDest)
  36.   end if
  37.  
  38.   call FileCopy(sSource,sDest)
  39.  end if
  40. End Sub
  41.  
  42.  
  43. Sub Plugin_Terminate 
  44. End Sub
  45.  
  46.  
  47.  
  48.